home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 February / EnigmA AMIGA RUN 04 (1996)(G.R. Edizioni)(IT)[!][issue 1996-02][Skylink CD III].iso / earcd / util1 / syslog.lha / SysLog_V1.00 / Developer / examples / SysLog / Makefile next >
Makefile  |  1995-11-13  |  420b  |  31 lines

  1. #
  2. # This file is public domain.
  3. #
  4. # Author: Petri Nordlund <petrin@megabaud.fi>
  5. #
  6. # $Id: MF.compile 1.2 1995/10/31 11:27:20 petrin Exp petrin $
  7. #
  8.  
  9. CFLAGS = -O
  10.  
  11.  
  12. SHELL = USR:BIN/sh
  13.  
  14. # Source files
  15. SRCS   = SysLog.c
  16.  
  17. # Object files
  18. OBJS   = $(SRCS:.c=.o)
  19.  
  20.  
  21. all : SysLog
  22.  
  23. SysLog : SysLog.o
  24.     gcc $(CFLAGS) -o SysLog $^ -lamiga -lauto -lsyslog
  25.  
  26. SysLog.o : SysLog.c
  27.     gcc $(CFLAGS) -c SysLog.c
  28.  
  29. clean:
  30.     -delete SysLog SysLog.o
  31.